1 package jrre.instructionset.push.localvariables;
2
3 import jrre.*;
4 import jrre.classloader.classfile.pool_entries.*;
5
6 public class FLoad_2 extends jrre.instructionset.Instruction {
7
8 public FLoad_2(){
9
10 name = "fload_2";
11 description = "foo foo moo poo";
12 length = 0;
13 }
14
15 /***
16 * Executes the <strong><code>fload_2</code></strong> instruction.
17 *
18 */
19 public void execute(){
20
21 Stack.pushOperand(Stack.getLocalVariable(2));
22
23 }
24
25 public String toString(){
26 return "fload_2";
27 }
28 }
This page was automatically generated by Maven